# Productivity and Office
This section mainly introduces the installation and usage of common social and office applications on the **Quectel Pi M1 / L1** smart main control board.
# Preparation
This section requires a network connection, which can be achieved via cellular, **Wi-Fi**, or Ethernet. For specific connection methods, please refer to the [Ethernet](<../../../User Guide/Ethernet/Ethernet.md>) chapter.
The native Android system does not come with a pre-installed browser. You need to download the [browser]() APK file, push it to the development board, and install it.
# Social Applications
## WeChat
1. Download the installation package;
- Go to the official [WeChat]() website to download it.
2. Install the software package;
- After downloading the installation package from the official website, simply click to install it.
```{image} images/image_Wp8Lbtw42orjwmxN0xkcx0Cknzh.webp
:width: 856px
:height: 480px
```
- After installation, a **WeChat** shortcut icon will appear on the **Android** desktop.
3. Run WeChat.
- Double-click the **WeChat** shortcut icon to run it.
```{image} images/image_X6ZRbgW7goUpGJx2U6Icml4En8I.webp
:width: 856px
:height: 480px
```
## Tencent QQ
1. Download the installation package;
- Go to the official [QQ]() website to download it.
2. Install the software package;
- After downloading the installation package from the official website, simply click to install it.
```{image} images/image_OVHobjqIaokT5lx99FtcA73Unjb.webp
:width: 856px
:height: 480px
```
- After installation, a **QQ** shortcut icon will appear on the **Android** desktop.
3. Run **QQ**.
- Double-click the **QQ** shortcut icon to run it.
```{image} images/image_Q4OqbbIbooUR91xnK1GcvbWTnje.webp
:width: 856px
:height: 480px
```
## Office Applications
The native **Android** system does not come with any pre-installed office applications. You need to download and install them yourself from the browser's official website.
### WPS
1. Download the installation package;
- Go to the official [WPS]() website to download it.
2. Install the software package;
- After downloading the installation package from the official website, simply click to install it.
```{image} images/image_Urzpb89zgogL0BxYhZzcjKwAnne.webp
:width: 856px
:height: 480px
```
- After installation, a **WPS** shortcut icon will appear on the **Android** desktop.
3. Run **WPS**.
- Double-click the **WPS** shortcut icon to run it.
```{image} images/image_Hutsb66luoLhDcxpDkNczuDrnXg.webp
:width: 856px
:height: 480px
```
# Common Services
## Media Scanner
**Media Scanner** is a background service in the **Android** system that scans media files (such as photos, music, and videos) in the device's storage and adds them to the system's **MediaStore** database, so that apps such as the gallery and music player can discover and display these files.
1. Prerequisites
- Write new images or music to the **sdcard** directory via **ADB**, **OTG**, or a program, but the **Gallery** or **Music app** cannot display these files.
2. Usage
- Use the **am broadcast** command to send a scan broadcast:
```shell
#Scan a single file
adb shell am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE \
-d file:///sdcard/your_folder/your_file.jpg
#Scan an entire directory
adb shell am broadcast -a android.intent.action.MEDIA_SCANNER_SCAN_FILE \
-d file:///sdcard/DCIM/Camera/
```
## scrcpy
**scrcpy** is an open-source Android screen mirroring tool that can transmit the real-time screen of a phone to a computer in real time and supports controlling the phone via mouse and keyboard.
1. Prerequisites
- You need to install [scrcpy]() and [ADB]() tools on your computer.
2. Usage
- Open the **ADB** tool, connect to the development board, and open the **ADB** terminal.
- Open the **scrcpy** tool.
- Enter the **scrcpy** command to launch **scrcpy**.
```shell
.\\scrcpy.exe -m 860
```